HEX
Server: Apache/2.4.68 (Debian)
System: Linux as-cs-widget-demo-us-central1 6.1.0-44-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: root (0)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-recipe-maker/assets/js/admin-faq/Steps/StepNext.js
import React from 'react';
import { __wprm } from 'Shared/Translations';
import Faq from '../Faq';

const StepNext = (props) => {
    return (
        <div className="wprm-admin-onboarding-step-next">
            <p>
                { __wprm( 'You made it to the end of onboarding. There is still a lot to explore, but we recommend starting by creating a recipe now. And do not forget to' ) } <strong>{ __wprm( 'sign up for the email course' ) }</strong> { __wprm( 'below to get the most out of this plugin.' ) }
            </p>
            <p>
                { __wprm( 'No need to worry about leaving this page. The information below is always available on' ) } <em>{ __wprm( 'WP Recipe Maker > FAQ & Support' ) }</em>.
            </p>
            <Faq context="onboarding" />
            <div className="footer-buttons">
                    <a
                        href={ wprm_admin.manage_url + '&skip_onboarding=1' }
                        className="button button-primary button-compact"
                    >{ __wprm( 'Continue to the Manage page' ) }</a>
                </div>
        </div>
    );
}
export default StepNext;